home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SHELL.ARC / Shell / h / PlainRect < prev    next >
Encoding:
Text File  |  1994-05-17  |  596 b   |  30 lines

  1. #ifndef __Shell_PlainRect_h
  2. #define __Shell_PlainRect_h
  3.  
  4. #ifndef __Shell_Shell_h
  5. #include "Shell.Shell.h"
  6. #endif
  7.  
  8.  
  9. Shell_rectblock    *Shell_AddPlainRect(
  10.     Shell_windblock *w,
  11.     int xmin, int ymin,
  12.     int xmax, int ymax
  13.     );
  14.  
  15.     /* A plain rect is just rectangle inside a Shell window    */
  16.     /* which can be saved as a sprite.            */
  17.  
  18.  
  19. Shell_rectblock    *Shell_AddPlainGreyRect(
  20.     Shell_windblock *w,
  21.     int xmin, int ymin,
  22.     int xmax, int ymax
  23.     );
  24.  
  25.     /* As above, except that the saved sprite will be have     */
  26.     /*  256-colours and a grey-scale palette instead of a     */
  27.     /* sprite from the current mode                */
  28.  
  29. #endif
  30.